[<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 localeconv()            Return Pointer to Locale Structure

 #include   <locale.h>

 struct lconv *localeconv(void);

        This function returns a pointer to the current locale structure.
        Note that C++ currently only supports locale C, the default.

       Returns:     A pointer to the structure result.  There is no error
                    return.

   -------------------------------- Example ---------------------------------

 #include <locale.h>
 #include <stdio.h>

 int main(void)

    struct lconv localel;
    struct lconv *conv = &localel;

    conv = localeconv();
    return 0;


See Also: setlocale()
This page created by ng2html v1.05, the Norton guide to HTML conversion utility. Written by Dave Pearson